home *** CD-ROM | disk | FTP | other *** search
-
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': 'Factory default preset for SpikyHalo effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_SpikyHalo():
- return {
- 'HorizontalCenter': 0.0,
- 'Frequency': 20.0,
- 'Radius': 50.0,
- 'FillColor': (0, 0, 0),
- 'Amplitude': 50.0,
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'VerticalCenter': 0.0,
- 'EdgeMode': 2
- }
-
- def Do(Environment):
- App.Do( Environment, 'SpikyHalo', Preset_SpikyHalo())
-